home *** CD-ROM | disk | FTP | other *** search
/ Into His Marvelous Light / Into His Marvelous LIGHT.iso / lesson2.dxr / 00256_Script_Go Loop < prev    next >
Text File  |  1998-01-03  |  846b  |  33 lines

  1. -- DESCRIPTION --
  2.  
  3. on getBehaviorDescription me
  4.   return "¼
  5. GO LOOP"&RETURN&RETURN&"¼
  6. Drop this behavior into the Script Channel of the Score or onto the Stage ¼
  7. to make the playback head loop back to the nearest previous marker.  If there ¼
  8. are no previous markers, the playback head jumps to frame 1."&RETURN&RETURN&"¼
  9. Not compatible with Java."&RETURN&RETURN&"¼
  10. PARAMETERS: None"
  11. end getBehaviorDescription
  12.  
  13.  
  14. on getBehaviorTooltip me
  15.   return "¼
  16. Frame behavior."&RETURN&RETURN&"¼
  17. Loops the playback head to the nearest"&RETURN&"¼
  18. previous marker (or to frame 1 if there"&RETURN&"¼
  19. are no intervening markers."&RETURN&RETURN&"¼
  20. Not compatible with Java."
  21. end getBehaviorTooltip
  22.  
  23.  
  24.  
  25. -- HISTORY --
  26.  
  27. -- 3 November 1998, written for the D7 Behaviors Palette by James Newton
  28.  
  29.  
  30.  
  31. on exitFrame me
  32.   go loop
  33. end exitFrame